home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / arcers / zsshl2fr.zip / ZPKFIX.BA_ / ZPKFIX.BAT
DOS Batch File  |  1995-01-05  |  932b  |  30 lines

  1. @echo off
  2. REM ZPKFIX -------------------------------------
  3. REM Batch file to use PKFIX with the ZS Shell
  4. REM %1 is the ZIP file name
  5. REM %2 is the ZIP file to create
  6. REM 
  7. REM We use a temp directory named 897436
  8. REM make sure you don' t use such a directory
  9. REM to avoid a possible blanking...
  10. REM --------------------------------------------
  11. REM Goto the Zip Studio EXTERN directory
  12. REM We use it to keep some space for the
  13. REM command line. (Please check GO_ZSHL.BAT)
  14. REM to adapt it to your configuration).
  15. CALL GO_ZSHL.BAT
  16. REM Build a temp subdirectory
  17. MD 897436
  18. CD 897436
  19. PKZIPFIX %1
  20. REM Going to the default directory
  21. CD..
  22. REM Rezip the files to the destname$
  23. COPY 897436\PKFIXED.ZIP %2
  24. REM Deleting the temp directory ----------------
  25. REM Available with MSDOS 6.0, for the previous
  26. REM release use DEL *., DEL *.? .. and so on.
  27. REM --------------------------------------------
  28. DELTREE /Y 897436
  29.  
  30.